home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib7
/
v_09_09
/
9n09020b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
245 b
|
17 lines
void myexit(void)
{
char reply[11];
if (proot_node != NULL) {
printf("\n The list still has nodes. Throw them away? ");
scanf("%10s", reply);
if (tolower(reply[0]) == 'n') {
return;
}
}
exit(EXIT_SUCCESS);
}